home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_07 / heintze / boolean.h < prev   
Encoding:
C/C++ Source or Header  |  1994-06-06  |  123 b   |  7 lines

  1. #ifndef __BOOLEAN_H
  2. #define __BOOLEAN_H
  3. typedef int Boolean;
  4. const Boolean TRUE = 1;
  5. const Boolean FALSE = 0;
  6. #endif
  7.